home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19981211-19990422 / 000112_news@watsun.cc.columbia.edu _Mon Jan 11 13:15:00 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@watsun.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id NAA29686
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 11 Jan 1999 13:14:59 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA10300
  7.     for kermit.misc@watsun.cc.columbia.edu; Mon, 11 Jan 1999 12:49:18 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: Switching from TCP to serial causes a problem
  11. Date: 11 Jan 1999 17:49:18 GMT
  12. Organization: Columbia University
  13. Message-ID: <77ddiu$a1h$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@mailrelay2.cc.columbia.edu
  15.  
  16. In article <77dbj3$ptr$1@oak.prod.itd.earthlink.net>,
  17. Scott Davis <scott.davis@principia.edu> wrote:
  18. : I am running C-kermit 6 (latest build) on AIX 4.
  19. :
  20. 6.0.192?
  21.  
  22. : Everything has been working well for a time now.
  23. : But we have just added a Cisco modem bank (telnet access).
  24. : A problem arises when a user switches from using the modem bank to a regular
  25. : serial modem.
  26. : Here is the series of commands that get executed (from the beginning).
  27. : ----
  28. : set host 132.147.1.2:7001 # This is to use the cisco modem bank.
  29. : dial ...
  30. :
  31. You should put a SET MODEM TYPE command between the SET HOST and DIAL
  32. commands, right?  (See p.126 of "Using C-Kermit".)
  33.  
  34. : hangup
  35. : set line /dev/tty12 # This is to use a regular serial modem.
  36. : --------
  37. : At this point "show comm" reports that the speed of /dev/tty12 is "unknown".
  38. : All attempts to actually use /dev/tty12 lock up until kermit is exited.
  39. : If the "hangup" command is NOT used, then the set line works, and access to
  40. : tty12 is normal.
  41. Version 6.0 has some bugs in the area of switching back & forth between
  42. connection types.  Some of these are fixed in 6.1 Beta.05:
  43.  
  44.   http://www.columbia.edu/kermit/ck61.html
  45.  
  46. and some more will be fixed in 7.0, which will be announced shortly for
  47. Beta testing.
  48.  
  49. - Frank